#!/bin/bash

# Get current path
mypath="`pwd`"

for filename in "$@"
	do
		chmod +x "$mypath/$filename"
done
